net/http.http2priorityNode.next (field)

15 uses

	net/http (current package)
		h2_bundle.go#L11708: 	prev, next *http2priorityNode // doubly-linked list of siblings
		h2_bundle.go#L11721: 			parent.kids = n.next
		h2_bundle.go#L11723: 			n.prev.next = n.next
		h2_bundle.go#L11725: 		if n.next != nil {
		h2_bundle.go#L11726: 			n.next.prev = n.prev
		h2_bundle.go#L11734: 		n.next = nil
		h2_bundle.go#L11737: 		n.next = parent.kids
		h2_bundle.go#L11739: 		if n.next != nil {
		h2_bundle.go#L11740: 			n.next.prev = n
		h2_bundle.go#L11778: 	for k := n.kids.next; k != nil; k = k.next {
		h2_bundle.go#L11785: 		for k := n.kids; k != nil; k = k.next {
		h2_bundle.go#L11804: 	for k := n.kids; k != nil; k = k.next {
		h2_bundle.go#L11976: 			next := k.next